Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Honor fail-on-init-error when no resources are found #1031

Draft
wants to merge 3 commits into
base: release-0.15
Choose a base branch
from

Conversation

elezar
Copy link
Member

@elezar elezar commented Oct 31, 2024

As implemented GFD will not fail if no resources are detected -- even if fail-on-init-error is set. This change ensures that fail-on-init-error is honored if no resources are detected.

This backports #1033 to the release-0.15 branch

As implemented GFD will not fail if no resources are detected -- even
if fail-on-init-error is set. This change ensures that fail-on-init-error
is honored if no resources are detected.

Signed-off-by: Evan Lezar <[email protected]>
@elezar elezar requested a review from tariq1890 October 31, 2024 14:35
@elezar elezar self-assigned this Oct 31, 2024
@elezar elezar marked this pull request as draft October 31, 2024 14:35
@elezar elezar added the maintenance Issue/PR to create or address a team project management need label Oct 31, 2024
@@ -190,7 +190,7 @@ func (f *Framework) AfterEach(ctx context.Context) {
for namespaceKey, namespaceErr := range nsDeletionErrors {
messages = append(messages, fmt.Sprintf("Couldn't delete ns: %q: %s (%#v)", namespaceKey, namespaceErr, namespaceErr))
}
e2elog.Failf(strings.Join(messages, ","))
e2elog.Failf("%s", strings.Join(messages, ","))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or

Suggested change
e2elog.Failf("%s", strings.Join(messages, ","))
e2elog.Fail(strings.Join(messages, ","))

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

tariq1890
tariq1890 previously approved these changes Oct 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
maintenance Issue/PR to create or address a team project management need
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants